
/*历程 start*/
.history_container{
    height: 485px;
    background-color: #f1f1f1;
    margin-bottom: 50px;
}

.history_wrapper{
    height: 100%;
    padding: 55px 0;
}

.history_wrapper img{
    width: 664px;
    height: 374px;
}

.history_right_content{
    display: inline-block;
    height: 100%;
    width: 536px;
    float: right;
    padding-left: 30px;
}

.history_title{
    width: 50px;
    height: 85px;
    border: 4px solid #e5e5e5;
    white-space: nowrap;
    padding-left: 17px;
    position: relative;
}

.hit_title_company{
    font-size: 22px;
    color: #009f3b;
    width: 200%;
    background-color: #f1f1f1;
    margin-top: 15px;
}

.hit_title_desc{
    font-size: 14px;
    color: #666666;
    width: 200%;
    background-color: #f1f1f1;
}

.history_content{
    margin-top: 18px;
}

.hit_content_item{
    position: relative;
}

.hit_content_item:before{
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #bfbfbf;
    left: 7px;
    top: 0;
    transition: all 0.2s;
}

.hit_content_item:hover:before{
    background-color: #009f3b;
}

.hit_content_item:last-child:before{
    background-color: transparent;
}

.hit_item_desc{
    position: relative;
    padding-left: 30px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 25px;
    cursor: pointer;
    color: #2e2e2e;
}

.hit_item_desc:hover{
    color: #009f3b;
}

.hit_item_desc img{
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 0;
}
/*历程 end*/